home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CDictionary 1.0 / CSmartBartender.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  715 b   |  25 lines  |  [TEXT/KAHL]

  1. /*****************************************************************************
  2.     CSmartBartender: subclass of CBartender that adds some additional
  3.         features. These are:
  4.         
  5.     •    Currently, just knows how to enable and disable all menus
  6.         with a single call.
  7.         
  8.     by Dan Podwall - you may do anything you please with this code except
  9.     charge for it, with the exception of normal network download charges.
  10.  
  11. *****************************************************************************/
  12.  
  13. #define _H_CSmartBartender
  14.  
  15. #include "CBartender.h"
  16. #include "defs.h"
  17.  
  18. struct CSmartBartender : CBartender
  19. {
  20.     virtual void ISmartBartender(Int16 MBARid);
  21.     
  22.     virtual void DisableAllMenus( void);
  23.     virtual void EnableAllMenus( void);
  24.  
  25. };